home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 46
/
Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso
/
-in_the_mag-
/
reader_requests
/
scilab
/
demos
/
wheel2
/
maple
/
makefile
< prev
next >
Wrap
Makefile
|
1999-09-16
|
390b
|
25 lines
SHELL = /bin/sh
include ../../../Version.incl
include ../../../Makefile.incl
OBJS = /tmp/wheel.o /tmp/wheelg.o
all:: $(OBJS)
/tmp/wheel.o: wheel.f
$(FC) $(FFLAGS) -c wheel.f -o /tmp/wheel.o
clean::
$(RM) /tmp/wheel.o
distclean::
$(RM) /tmp/wheel.o
/tmp/wheelg.o: wheelg.f
$(FC) $(FFLAGS) -c wheelg.f -o /tmp/wheelg.o
clean::
$(RM) /tmp/wheelg.o
distclean::
$(RM) /tmp/wheelg.o